Newer
Older
BlackoutClient / Assets / Best HTTP / Source / SecureProtocol / cms / CMSAuthEnvelopedGenerator.cs
@Mark Mark on 30 Jan 2020 818 bytes Added Best HTTP 2 plugin
#if !BESTHTTP_DISABLE_ALTERNATE_SSL && (!UNITY_WEBGL || UNITY_EDITOR)
#pragma warning disable
using System;

using BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Nist;

namespace BestHTTP.SecureProtocol.Org.BouncyCastle.Cms
{
	internal class CmsAuthEnvelopedGenerator
	{
		public static readonly string Aes128Ccm = NistObjectIdentifiers.IdAes128Ccm.Id;
		public static readonly string Aes192Ccm = NistObjectIdentifiers.IdAes192Ccm.Id;
		public static readonly string Aes256Ccm = NistObjectIdentifiers.IdAes256Ccm.Id;
		public static readonly string Aes128Gcm = NistObjectIdentifiers.IdAes128Gcm.Id;
		public static readonly string Aes192Gcm = NistObjectIdentifiers.IdAes192Gcm.Id;
		public static readonly string Aes256Gcm = NistObjectIdentifiers.IdAes256Gcm.Id;
	}
}
#pragma warning restore
#endif